body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.cttn__header {
  position: relative;
}

.cttn__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bgs.jpg");
  background-size: cover;
  background-repeat: no-repeat; 
  filter: brightness(0.4) contrast(1.2) grayscale(10%);
  z-index: -1;
}

.cttn__header__nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 12vh;
  background:  rgba(0, 0, 0, 0.6);
  padding: 0 15px;
}

.cttn__header__nav__img{
  width: 20%;
  height: 100%;
  cursor: pointer;
}

.cttn__header__nav__options{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cttn__header__nav__options button{
  height: 100%;
  text-decoration: none;
  padding: 12px;
  font-style: italic;
  background: transparent;
  border: none;
  transition: .3s ease-in-out;
  font-size: 20px;
  color: #fff;
}  

.cttn__header__nav__options button:hover{
  background:  rgba(255, 255, 255, 0.4);
} 

.cttn__header__nav__options__responsive{
  display: none;
  width: 15%;
  justify-content: center;
  align-items: center;
}

.cttn__header__nav__options__responsive button{
  width: 80%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  transition: .2s ease-in;
  border-radius: 12px;
  padding: 5px;
}

.cttn__header__nav__options__responsive button:hover{
  background:  rgba(255, 255, 255, 0.4);
}

.cttn__header__search{
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 40px;
}

.cttn__header__search div:first-child{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  margin: 40px 0;
}

.cttn__header__search div:first-child label{
  color:#fff;
  font-size: 36px;
  font-style: italic;
  text-align: center;
}

.cttn__header__search div:nth-child(2){
  background:  rgba(0, 0, 0, 0.6);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 0;
  padding: 50px 20px;
}

.cttn__header__search div:nth-child(2) input{
  border-radius: 20px;
  border: 0px;
  padding: 12px;
  font-style: italic;
  width: 50%;
}

select:focus {
  outline: none;
}

.cttn__header__search div:nth-child(2) select{
  border-radius: 20px;
  border: 0px;
  padding: 12px;
  background: #10bd6d;
  width: 16%;
  color: #fff;
  margin: 0 15px;
}

input:focus {
  outline: none;
}

.cttn__header__search div:nth-child(2) button{
  border-radius: 20px;
  border: 0px;
  padding: 10px 0 ;
  background: #044f32;
  width: 16%;
  margin: 0 15px;
  color: #fff;
}

.cttn__header__icons {
  display: flex;
  flex-wrap: nowrap; /* Forzar que estén en una sola línea */
  justify-content: center; /* Centrar si hay espacio extra */
  gap: 10px; /* Reemplaza los márgenes por "gap" (espacio interno) */
  padding: 10px 0 20px 0;
  width: 100%;
}

.cttn__header__icons__div {
  flex: 1; /* Ocupa espacio proporcional */
  min-width: calc(20% - 10px); /* 20% - espacio del gap */
  max-width: calc(20% - 10px); /* Evita que crezcan más de lo necesario */
  text-align: center;
}
.cttn__header__icons__div p{
  margin: 0;
}

.cttn__header__icons__div__div{
  color:#fff;
  border-radius: 10px;
  transition: 0.2s;
  width: 100%;
  padding: 15px;
  cursor: pointer;
}

.cttn__header__icons__div__div:hover{
  background:  rgba(255, 255, 255, 0.5);
  color: #1f1e1e;
  transform: scale(1.05);
}



.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background:rgba(0, 0, 0, 0.5);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content button {
  width: 100%;
  font-size: 16px;
}


.dropdown:hover .dropdown-content {
  display: block;
}



.cttn__proyectos__inicio{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px 0;
}


/* From Uiverse.io by gharsh11032000 */ 
.card {
  position: relative;
  width: 30%;
  margin: 10px;
  height: 200px;
  background-color: #f2f2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.card svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; 
  top: 0;
  left: 0;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #6c8c73;
  color: #fff;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 15px;
  color: #f6f6f6;
  font-weight: 700;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
}

.card:hover svg {
  scale: 0;
}

.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
}

@media (max-width: 950px) {
  .card {
    width: 45% !important;
  }

  .cttn__header__nav__options{
    width: 60%;
  }
  
  .cttn__header__nav__options button{
    font-size: 18px;
  }  

  .cttn__header__nav__img {
    width: 30%;
  }
}



@media (max-width: 1000px) {
  .cttn__header__nav__img {
    width: 25%;
  }
}





@media (max-width: 900px) {
  .cttn__busqueda__proyecto{
    width: 90% !important;
  }

  .cttn__informacion{
    width: 85% !important;
  }
}

@media (max-width: 800px) {
  .cttn__header__nav__img {
    width: 32%;
  }
}

@media (max-width: 750px) {
  .cttn__header__search div:nth-child(2) input{
    width: 100%;
  }
  
  .cttn__header__search div:nth-child(2) select{
    width: 40%;
  }
  
  .cttn__header__search div:nth-child(2) button{
    width: 40%;
  }

  .cttn__header__icons__div{
    width: 40%;
  }

  .cttn__header__search div:first-child {
    padding: 5px; 
    margin: 20px 0;
  }

  .cttn__header__nav__options{
    display: none;
  }

  .cttn__header__nav__options__responsive{
    display: flex;
  }

  .cttn__informacion{
    width: 70% !important;
    height: 100vh !important;
  }

  .cttn__informacion__img{
    width:100% !important;
    height: 40% !important;
  }

  .cttn__informacion__img img{
    width: 100%;
    height: 100%;
    padding: 0 !important;
    position: absolute;
    left: -40px;
    top: -20px;
    transition: transform 0.3s;
    filter: drop-shadow(10px 10px 10px rgba(46, 46, 46, 0.8));
    /* box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.6); */
  }
  
  .cttn__informacion__info{
    width:100% !important;
    height: 60% !important;
    padding: 0 15px 15px 15px !important;
  }

  .cttn__informacion__info__cabecera h4{
    font-size: 18px !important;
  }

  .cttn__informacion__info__cabecera h5{
    font-size: 16px !important;
  }

  .cttn__informacion__info__data label{
    font-size: 16px !important;
  }

  .cttn__informacion__info__data button{
    padding: 8px !important;
  }

  .cttn__informacion__info__data button:nth-child(2){
    width: 60% !important;
  }

  .cttn__informacion__info__data button:first-child{
    width: 30% !important;
  }

  .cttn__header__search div:first-child label {
    font-size: 30px;
}

}



@media (max-width: 600px) {
  .card {
    width: 85% !important;
  }

  .cttn__header__icons__div{
    width: 70%;
  }

  .cttn__header__search div:nth-child(2) select{
    width: 100%;
    margin: 0;
  }
  
  .cttn__header__search div:nth-child(2) button{
    width: 100%;
    margin: 0;
  }

  .cttn__header__search{
    padding: 0;
  }

  .cttn__header__search div:first-child label{
    font-size: 26px !important;
  }

  .cttn__header__icons__div{
    margin: 0;
  }

  .cttn__header__nav__img {
    width: 40%;
  }

  .cttn__busqueda__proyecto{
    width: 98% !important;
  }


  .cttn__informacion{
    width: 75% !important;
    height: 120vh !important;
  }

  .cttn__informacion__img{
    height: 35% !important;
  }

  .cttn__informacion__img img{
    left: -25px !important;
    top: -15px !important;
  }
  
  .cttn__informacion__info{
    height: 65% !important;
  }

  .cttn__informacion__info__cabecera h4{
    font-size: 17px !important;
  }

  .cttn__informacion__info__cabecera h5{
    font-size: 15px !important;
  }

  .cttn_footer_libro div {
    width: 40% !important;
  }
}


@media (max-width: 450px) {
  .cttn__header__nav__img {
    width: 50% !important;
  }

  .cttn__informacion{
    width: 80% !important;
  }

  .cttn__informacion__info__cabecera h4{
    font-size: 17px !important;
  }

  .cttn__informacion__info__cabecera h5{
    font-size: 15px !important;
  }

  .cttn__informacion__info__data label{
    font-size: 15px !important;
  }

  .cttn__informacion__info__data button{
    padding: 6px !important;
  }


  .cttn__informacion__info__data button:first-child{
    width: 32% !important;
  }

  .cttn_footer_libro div {
    width: 80% !important;
  }
}



@media(min-width: 900px){
  .cttn__barra__celular {
    display: none !important;
  }
}

.cttn__barra__celular {
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  z-index: 20;
  height: 110vh;
  display: none;
}

.cttn__barra__celular__div__ul {
  width: 100%;
  display: flex;
  margin-top: 15px;
  padding: 0px;
}

.cttn__barra__celular__div__ul ul{
  width: 100%;
  padding: 0;
}

.cttn__barra__celular__div__ul ul li {
  display: flex;
  align-items: center;
  margin: 5px auto;
}

.cttn__barra__celular__div__ul ul li a{
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.animacion__barra__celular {
  animation-name: bar_cel;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes bar_cel {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.cttn__barra__celular__button{
  border: none;
  background: transparent;
  width: 100%;
  color: #fff;
  text-align: start;
  border-bottom: 1px solid #fff;
  padding: 10px;
  font-size: 18px
}

.menu-opciones {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background:transparent;
  margin-top: 10px;
  border: none;
  padding: 0 10px; /* El padding interior */
}

.menu-opciones button {
  width: 100%;
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  padding: 5px;
  text-align: start;
}

.menu-opciones.show {
  max-height: 200px; /* Puedes ajustar este valor para que se ajuste al contenido */
}

.cttn__busqueda{
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 90%;
  flex-wrap: wrap;
  gap: 25px 0;
  margin: 25px auto;
}


.cttn__busqueda__proyecto{
  width: 48%;
  box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40vh;
}

.excerpt{
  text-align: justify;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  /* Limita a 2 líneas */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Añade los "..." */
  white-space: normal;
}

.cttn__busqueda__proyecto__img{
  width: 48%;
  height: 100%;
  overflow: hidden;  
  position: relative;
}

.cttn__busqueda__proyecto__info{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}

.cttn__busqueda__proyecto__info div:nth-child(2){
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.cttn__busqueda__proyecto__info div:first-child h6:first-child{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
}

.cttn__busqueda__proyecto__info .autor{
  color: #717171;
  font-weight: bold;
}



.cttn__busqueda__proyecto__info span{
  color: #b4bd10;
  border-radius: 8px;
  border: 1px solid #b4bd10;
  padding: 5px 8px;
  transition: .3s ease-in-out;
  cursor: pointer;
}

.cttn__busqueda__proyecto__info span:hover{
  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
}

.cttn__informacion{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap:20px 0;
  width: 80%;
  margin: 0 auto;
  height: 75vh;
  border-radius: 16px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
  background: #6c8c73;
  border: 1px solid #63836a;
}

.cttn__informacion__img{
  width:40%;
  height: 100%;
  position: relative;
  overflow: visible; 
}

.cttn__informacion__img img{
  width: 100%;
  height: 100%;
  padding: 25px 0 25px 0;
  position: absolute;
  left: -40px;
  transition: transform 0.3s;
  filter: drop-shadow(10px 10px 10px rgba(46, 46, 46, 0.8));
  /* box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.6); */
}

.cttn__informacion__info{
  width:60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px 10px 0;
}

.cttn__informacion__info__cabecera{
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  color: #fff;
  /* font-family: 'Times New Roman', Times, serif; */
}

.cttn__informacion__info__cabecera h6{
  color: #e1e1e1;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.cttn__informacion__info__cabecera h4{
  text-align: justify;
  font-size: 20px;
  width: 100%;
}

.cttn__informacion__info__cabecera h5{
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  font-weight: 100 !important;

}
.cttn__informacion__info__data div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.cttn__informacion__info__data label{
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  text-align: justify;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  /* Limita a 2 líneas */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Añade los "..." */
  white-space: normal;

}

.cttn__informacion__info__data button:first-child{
  border: 1px solid #fff;
  border-radius: 16px;
  color: #fff;
  padding: 10px;
  width: 10%;
  background: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: .2s ease-in;
}

.cttn__informacion__info__data button:first-child:hover{
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}


.cttn__informacion__info__data button:nth-child(2){
  background: rgb(16 94 58);
  border: none;
  border-radius: 16px;
  color: #fff;
  padding: 10px;
  width: 80%;
  transition: .2s ease-in-out;
}


.cttn__informacion__info__data button:nth-child(2):hover{
  background: #fff;
  color: rgb(16 94 58);
}

.front-content-book {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.card-book .front-content-book p {
  font-size: 20px;
  font-weight: 700;
  padding: 0 10px;
  opacity: 1;
  background: linear-gradient(-45deg, #29b3f8 0%, #540fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: absolute;
  z-index: 10;
}

.card-book .content-book {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(315deg, #71a256, #216351);
  color: #e8e8e8;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: none;
  transform: translateY(96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-book .content-book .heading-book {
  font-size: 32px;
  font-weight: 700;
}

.card-book:hover .content-book {
  transform: translateY(0);
}

.card-book:hover .front-content-book {
  transform: translateY(-30%);
}

.card-book:hover .front-content-book p {
  opacity: 0;
}

.cttn__button__back{
  width: 80%;
  margin: 0 auto;
}

.cttn__button__back button{
  border-radius: 8px;
  background: #044f32;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
  border: none;
  margin: 12px;
  padding: 10px;
  color: #ffffff;
  transition: .1s ease-in-out;
}

.cttn__button__back button:hover{
  margin: 16px;
}



.pantalla_carga {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loader {
  --dim: 5rem;
  width: var(--dim);
  height: var(--dim);
  position: absolute;
  animation: spin988 2s linear infinite;
}

.loader .circle {
  --color: #ffffff;
  --dim: 1.2rem;
  width: var(--dim);
  height: var(--dim);
  background-color: var(--color);
  border-radius: 50%;
  position: absolute;
}

.loader .circle:nth-child(1) {
  top: 0;
  left: 0;
}

.loader .circle:nth-child(2) {
  top: 0;
  right: 0;
}

.loader .circle:nth-child(3) {
  bottom: 0;
  left: 0;
}

.loader .circle:nth-child(4) {
  bottom: 0;
  right: 0;
}

@keyframes spin988 {
  0% {
    transform: scale(1) rotate(0);
  }

  20%, 25% {
    transform: scale(1.3) rotate(90deg);
  }

  45%, 50% {
    transform: scale(1) rotate(180deg);
  }

  70%, 75% {
    transform: scale(1.3) rotate(270deg);
  }

  95%, 100% {
    transform: scale(1) rotate(360deg);
  }
}









@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


#footer {
  margin: 40px 0 0 0;
  padding: 0;
  box-sizing: border-box;
}

.container__footer {
  max-width: 1170px;
  margin: auto;
  padding: 10px
}

.roww {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.title__utb {
  color: #fff;
  margin: 0;
  margin-left: 15px;
}

.footer__ul {
  list-style: none;
}

.li__footer {
  list-style-type: none !important;
}

#footer {
  /* background-color: rgb(0 0 0 / 66%);; */
  background-color: rgb(13 18 27);

}

.footer-col {
  width: 22%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ffb700;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col .footer__ul .li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col .footer__ul .li__footer .a__footer {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col .footer__ul .li__footer .a__footer:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links .a__footer {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links .a__footer:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.fas {
  margin: 7px;
  font-weight: 600;
}

.dr_utb {
  margin: 0;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  text-align: end;
}

.hefo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hefo img {
  height: 30px;
  padding-left: 15px;
}

.cttn_footer_libro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}

.cttn_footer_libro div {
  width: 20%;
}

.cttn_footer_libro div a {
  font-size: 17px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb !important;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cttn_footer_libro div a:hover {
  color: #ffffff;
  padding-left: 8px;
}




.content__body__mensajes{
  position: absolute;
  top: 70vh !important;
  right: 0 !important;
  overflow: hidden;
  z-index: 1200;
}

.success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #EDFBD8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
  border: 1px solid #12b963;
  transition: .5s ease-in;
  transform: translateX(100%);
}

.success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.success__icon path {
  fill: #84D65A;
}

.success__title {
  font-weight: 500;
  font-size: 14px;
  color: #2B641E;
}

.success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.success__close path {
  fill: #2B641E;
}






/* From Uiverse.io by andrew-demchenk0 */ 
.warning {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #FEF7D1;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
  border: 1px solid #deda15;
  transition: .5s ease-in;
  transform: translateX(100%);
}

.warning__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.warning__icon path {
  fill: #F7C752;
}

.warning__title {
  font-weight: 500;
  font-size: 14px;
  color: #755118;
}

.warning__close {
  width: 20px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}

.warning__close path {
  fill: #755118;
}












.error {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #FCE8DB;
  border-radius: 8px;
  border: 1px solid #EF665B;
  box-shadow: 0px 0px 5px -3px #111;
  transition: .5s ease-in;
  transform: translateX(100%);
}

.error__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.error__icon path {
  fill: #EF665B;
}

.error__title {
  font-weight: 500;
  font-size: 14px;
  color: #71192F;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.error__close path {
  fill: #71192F;
}
